argc argv

命令行参数

#include <stdio.h>

int main( int argc , char *argv[] )
{
    // add your code here
    // ...

    return 0 ;
}